home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-10-23 | 1.2 KB | 26 lines | [TEXT/MPS ] |
- #!./perl
-
- # $Header: tell.t,v 4.0 91/03/20 01:51:14 lwall Locked $
-
- print "1..13\n";
-
- $TST = 'tst';
-
- open($TST, '::Makefile') || open($TST, ':::Makefile') || (die "Can't open ::Makefile");
-
- if (eof(tst)) { print "not ok 1\n"; } else { print "ok 1\n"; }
-
- $firstline = <$TST>;
- $secondpos = tell;
-
- $x = 0;
- while (<tst>) {
- if (eof) {$x++;}
- }
- if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; }
-
- $lastpos = tell;
-
- unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; }
-
- if (seek($TST,0,0)) { prin